home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / Other Langs / Tickle-4.0 (tcl) / tcl / src / tclParse.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-11-07  |  35.3 KB  |  1,305 lines  |  [TEXT/MPS ]

  1. #ifdef MPW
  2. #    pragma segment TCL_PARSE
  3. #endif
  4.  
  5. /* 
  6.  * tclParse.c --
  7.  *
  8.  *    This file contains a collection of procedures that are used
  9.  *    to parse Tcl commands or parts of commands (like quoted
  10.  *    strings or nested sub-commands).
  11.  *
  12.  * Copyright (c) 1987-1993 The Regents of the University of California.
  13.  * All rights reserved.
  14.  *
  15.  * Permission is hereby granted, without written agreement and without
  16.  * license or royalty fees, to use, copy, modify, and distribute this
  17.  * software and its documentation for any purpose, provided that the
  18.  * above copyright notice and the following two paragraphs appear in
  19.  * all copies of this software.
  20.  * 
  21.  * IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR
  22.  * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT
  23.  * OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF
  24.  * CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  25.  *
  26.  * THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,
  27.  * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
  28.  * AND FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE PROVIDED HEREUNDER IS
  29.  * ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO
  30.  * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
  31.  */
  32.  
  33. #ifndef lint
  34. static char rcsid[] = "$Header: /user6/ouster/tcl/RCS/tclParse.c,v 1.35 93/08/18 16:07:16 ouster Exp $ SPRITE (Berkeley)";
  35. #endif
  36.  
  37. #include "tclInt.h"
  38.  
  39. /*
  40.  * The following table assigns a type to each character.  Only types
  41.  * meaningful to Tcl parsing are represented here.  The table indexes
  42.  * all 256 characters, with the negative ones first, then the positive
  43.  * ones.
  44.  */
  45.  
  46. char tclTypeTable[] = {
  47.     TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,
  48.     TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,
  49.     TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,
  50.     TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,
  51.     TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,
  52.     TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,
  53.     TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,
  54.     TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,
  55.     TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,
  56.     TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,
  57.     TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,
  58.     TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,
  59.     TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,
  60.     TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,
  61.     TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,
  62.     TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,
  63.     TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,
  64.     TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,
  65.     TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,
  66.     TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,
  67.     TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,
  68.     TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,
  69.     TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,
  70.     TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,
  71.     TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,
  72.     TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,
  73.     TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,
  74.     TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,
  75.     TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,
  76.     TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,
  77.     TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,
  78.     TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,
  79. /* Dividing line between positive and negative... */
  80.     TCL_COMMAND_END,   TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,
  81.     TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,
  82.     TCL_NORMAL,        TCL_SPACE,         TCL_COMMAND_END/*NL*/, TCL_SPACE,
  83.     TCL_SPACE,         TCL_COMMAND_END/*CR*/, TCL_NORMAL,    TCL_NORMAL,
  84.     TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,
  85.     TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,
  86.     TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,
  87.     TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,
  88.     TCL_SPACE,         TCL_NORMAL,        TCL_QUOTE,         TCL_NORMAL,
  89.     TCL_DOLLAR,        TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,
  90.     TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,
  91.     TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,
  92.     TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,
  93.     TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,
  94.     TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,        TCL_COMMAND_END,
  95.     TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,
  96.     TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,
  97.     TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,
  98.     TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,
  99.     TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,
  100.     TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,
  101.     TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,
  102.     TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,        TCL_OPEN_BRACKET,
  103.     TCL_BACKSLASH,     TCL_COMMAND_END,   TCL_NORMAL,        TCL_NORMAL,
  104.     TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,
  105.     TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,
  106.     TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,
  107.     TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,
  108.     TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,
  109.     TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,
  110.     TCL_NORMAL,        TCL_NORMAL,        TCL_NORMAL,        TCL_OPEN_BRACE,
  111.     TCL_NORMAL,        TCL_CLOSE_BRACE,   TCL_NORMAL,        TCL_NORMAL,
  112. };
  113.  
  114. /*
  115.  * Function prototypes for procedures local to this file:
  116.  */
  117.  
  118. static char *    QuoteEnd _ANSI_ARGS_((char *string, int term));
  119. static char *    VarNameEnd _ANSI_ARGS_((char *string));
  120.  
  121. /*
  122.  *----------------------------------------------------------------------
  123.  *
  124.  * Tcl_Backslash --
  125.  *
  126.  *    Figure out how to handle a backslash sequence.
  127.  *
  128.  * Results:
  129.  *    The return value is the character that should be substituted
  130.  *    in place of the backslash sequence that starts at src.  If
  131.  *    readPtr isn't NULL then it is filled in with a count of the
  132.  *    number of characters in the backslash sequence.
  133.  *
  134.  * Side effects:
  135.  *    None.
  136.  *
  137.  *----------------------------------------------------------------------
  138.  */
  139.  
  140. char
  141. Tcl_Backslash(src, readPtr)
  142.     char *src;            /* Points to the backslash character of
  143.                  * a backslash sequence. */
  144.     int *readPtr;        /* Fill in with number of characters read
  145.                  * from src, unless NULL. */
  146. {
  147.     register char *p = src+1;
  148.     char result;
  149.     int count;
  150.  
  151.     count = 2;
  152.  
  153.     switch (*p) {
  154.     case 'a':
  155.         result = 0x7;    /* Don't say '\a' here, since some compilers */
  156.         break;        /* don't support it. */
  157.     case 'b':
  158.         result = '\b';
  159.         break;
  160.     case 'f':
  161.         result = '\f';
  162.         break;
  163.     case 'n':
  164. #if defined(THINK_C) && defined(TCLAPPL)
  165.         result = '\r';
  166. #else
  167.         result = '\n';
  168. #endif
  169.         break;
  170.     case 'r':
  171. #if defined(THINK_C) && defined(TCLAPPL)
  172.         result = '\n';
  173. #else
  174.         result = '\r';
  175. #endif
  176.         break;
  177.     case 't':
  178.         result = '\t';
  179.         break;
  180.     case 'v':
  181.         result = '\v';
  182.         break;
  183.     case 'x':
  184.         if (isxdigit(UCHAR(p[1]))) {
  185.         char *end;
  186.  
  187.         result = strtoul(p+1, &end, 16);
  188.         count = end - src;
  189.         } else {
  190.         count = 2;
  191.         result = 'x';
  192.         }
  193.         break;
  194. #if defined(THINK_C) && defined(TCLAPPL)
  195.     case '\r':
  196. #else
  197.     case '\n':
  198. #endif
  199.         do {
  200.         p++;
  201.         } while (isspace(UCHAR(*p)));
  202.         result = ' ';
  203.         count = p - src;
  204.         break;
  205.     case 0:
  206.         result = '\\';
  207.         count = 1;
  208.         break;
  209.     default:
  210.         if (isdigit(UCHAR(*p))) {
  211.         result = *p - '0';
  212.         p++;
  213.         if (!isdigit(UCHAR(*p))) {
  214.             break;
  215.         }
  216.         count = 3;
  217.         result = (result << 3) + (*p - '0');
  218.         p++;
  219.         if (!isdigit(UCHAR(*p))) {
  220.             break;
  221.         }
  222.         count = 4;
  223.         result = (result << 3) + (*p - '0');
  224.         break;
  225.         }
  226.         result = *p;
  227.         count = 2;
  228.         break;
  229.     }
  230.  
  231.     if (readPtr != NULL) {
  232.     *readPtr = count;
  233.     }
  234.     return result;
  235. }
  236.  
  237. /*
  238.  *--------------------------------------------------------------
  239.  *
  240.  * TclParseQuotes --
  241.  *
  242.  *    This procedure parses a double-quoted string such as a
  243.  *    quoted Tcl command argument or a quoted value in a Tcl
  244.  *    expression.  This procedure is also used to parse array
  245.  *    element names within parentheses, or anything else that
  246.  *    needs all the substitutions that happen in quotes.
  247.  *
  248.  * Results:
  249.  *    The return value is a standard Tcl result, which is
  250.  *    TCL_OK unless there was an error while parsing the
  251.  *    quoted string.  If an error occurs then interp->result
  252.  *    contains a standard error message.  *TermPtr is filled
  253.  *    in with the address of the character just after the
  254.  *    last one successfully processed;  this is usually the
  255.  *    character just after the matching close-quote.  The
  256.  *    fully-substituted contents of the quotes are stored in
  257.  *    standard fashion in *pvPtr, null-terminated with
  258.  *    pvPtr->next pointing to the terminating null character.
  259.  *
  260.  * Side effects:
  261.  *    The buffer space in pvPtr may be enlarged by calling its
  262.  *    expandProc.
  263.  *
  264.  *--------------------------------------------------------------
  265.  */
  266.  
  267. int
  268. TclParseQuotes(interp, string, termChar, flags, termPtr, pvPtr)
  269.     Tcl_Interp *interp;        /* Interpreter to use for nested command
  270.                  * evaluations and error messages. */
  271.     char *string;        /* Character just after opening double-
  272.                  * quote. */
  273.     int termChar;        /* Character that terminates "quoted" string
  274.                  * (usually double-quote, but sometimes
  275.                  * right-paren or something else). */
  276.     int flags;            /* Flags to pass to nested Tcl_Eval calls. */
  277.     char **termPtr;        /* Store address of terminating character
  278.                  * here. */
  279.     ParseValue *pvPtr;        /* Information about where to place
  280.                  * fully-substituted result of parse. */
  281. {
  282.     register char *src, *dst, c;
  283.  
  284.     src = string;
  285.     dst = pvPtr->next;
  286.  
  287.     while (1) {
  288.     if (dst == pvPtr->end) {
  289.         /*
  290.          * Target buffer space is about to run out.  Make more space.
  291.          */
  292.  
  293.         pvPtr->next = dst;
  294.         (*pvPtr->expandProc)(pvPtr, 1);
  295.         dst = pvPtr->next;
  296.     }
  297.  
  298.     c = *src;
  299.     src++;
  300.     if (c == termChar) {
  301.         *dst = '\0';
  302.         pvPtr->next = dst;
  303.         *termPtr = src;
  304.         return TCL_OK;
  305.     } else if (CHAR_TYPE(c) == TCL_NORMAL) {
  306.         copy:
  307.         *dst = c;
  308.         dst++;
  309.         continue;
  310.     } else if (c == '$') {
  311.         int length;
  312.         char *value;
  313.  
  314.         value = Tcl_ParseVar(interp, src-1, termPtr);
  315.         if (value == NULL) {
  316.         return TCL_ERROR;
  317.         }
  318.         src = *termPtr;
  319.         length = strlen(value);
  320.         if ((pvPtr->end - dst) <= length) {
  321.         pvPtr->next = dst;
  322.         (*pvPtr->expandProc)(pvPtr, length);
  323.         dst = pvPtr->next;
  324.         }
  325.         strcpy(dst, value);
  326.         dst += length;
  327.         continue;
  328.     } else if (c == '[') {
  329.         int result;
  330.  
  331.         pvPtr->next = dst;
  332.         result = TclParseNestedCmd(interp, src, flags, termPtr, pvPtr);
  333.         if (result != TCL_OK) {
  334.         return result;
  335.         }
  336.         src = *termPtr;
  337.         dst = pvPtr->next;
  338.         continue;
  339.     } else if (c == '\\') {
  340.         int numRead;
  341.  
  342.         src--;
  343.         *dst = Tcl_Backslash(src, &numRead);
  344.         dst++;
  345.         src += numRead;
  346.         continue;
  347.     } else if (c == '\0') {
  348.         Tcl_ResetResult(interp);
  349.         sprintf(interp->result, "missing %c", termChar);
  350.         *termPtr = string-1;
  351.         return TCL_ERROR;
  352.     } else {
  353.         goto copy;
  354.     }
  355.     }
  356. }
  357.  
  358. /*
  359.  *--------------------------------------------------------------
  360.  *
  361.  * TclParseNestedCmd --
  362.  *
  363.  *    This procedure parses a nested Tcl command between
  364.  *    brackets, returning the result of the command.
  365.  *
  366.  * Results:
  367.  *    The return value is a standard Tcl result, which is
  368.  *    TCL_OK unless there was an error while executing the
  369.  *    nested command.  If an error occurs then interp->result
  370.  *    contains a standard error message.  *TermPtr is filled
  371.  *    in with the address of the character just after the
  372.  *    last one processed;  this is usually the character just
  373.  *    after the matching close-bracket, or the null character
  374.  *    at the end of the string if the close-bracket was missing
  375.  *    (a missing close bracket is an error).  The result returned
  376.  *    by the command is stored in standard fashion in *pvPtr,
  377.  *    null-terminated, with pvPtr->next pointing to the null
  378.  *    character.
  379.  *
  380.  * Side effects:
  381.  *    The storage space at *pvPtr may be expanded.
  382.  *
  383.  *--------------------------------------------------------------
  384.  */
  385.  
  386. int
  387. TclParseNestedCmd(interp, string, flags, termPtr, pvPtr)
  388.     Tcl_Interp *interp;        /* Interpreter to use for nested command
  389.                  * evaluations and error messages. */
  390.     char *string;        /* Character just after opening bracket. */
  391.     int flags;            /* Flags to pass to nested Tcl_Eval. */
  392.     char **termPtr;        /* Store address of terminating character
  393.                  * here. */
  394.     register ParseValue *pvPtr;    /* Information about where to place
  395.                  * result of command. */
  396. {
  397.     int result, length, shortfall;
  398.     Interp *iPtr = (Interp *) interp;
  399.  
  400.     iPtr->evalFlags = flags | TCL_BRACKET_TERM;
  401.     result = Tcl_Eval(interp, string);
  402.     *termPtr = iPtr->termPtr;
  403.     if (result != TCL_OK) {
  404.     /*
  405.      * The increment below results in slightly cleaner message in
  406.      * the errorInfo variable (the close-bracket will appear).
  407.      */
  408.  
  409.     if (**termPtr == ']') {
  410.         *termPtr += 1;
  411.     }
  412.     return result;
  413.     }
  414.     (*termPtr) += 1;
  415.     length = strlen(iPtr->result);
  416.     shortfall = length + 1 - (pvPtr->end - pvPtr->next);
  417.     if (shortfall > 0) {
  418.     (*pvPtr->expandProc)(pvPtr, shortfall);
  419.     }
  420.     strcpy(pvPtr->next, iPtr->result);
  421.     pvPtr->next += length;
  422.     Tcl_FreeResult(iPtr);
  423.     iPtr->result = iPtr->resultSpace;
  424.     iPtr->resultSpace[0] = '\0';
  425.     return TCL_OK;
  426. }
  427.  
  428. /*
  429.  *--------------------------------------------------------------
  430.  *
  431.  * TclParseBraces --
  432.  *
  433.  *    This procedure scans the information between matching
  434.  *    curly braces.
  435.  *
  436.  * Results:
  437.  *    The return value is a standard Tcl result, which is
  438.  *    TCL_OK unless there was an error while parsing string.
  439.  *    If an error occurs then interp->result contains a
  440.  *    standard error message.  *TermPtr is filled
  441.  *    in with the address of the character just after the
  442.  *    last one successfully processed;  this is usually the
  443.  *    character just after the matching close-brace.  The
  444.  *    information between curly braces is stored in standard
  445.  *    fashion in *pvPtr, null-terminated with pvPtr->next
  446.  *    pointing to the terminating null character.
  447.  *
  448.  * Side effects:
  449.  *    The storage space at *pvPtr may be expanded.
  450.  *
  451.  *--------------------------------------------------------------
  452.  */
  453.  
  454. int
  455. TclParseBraces(interp, string, termPtr, pvPtr)
  456.     Tcl_Interp *interp;        /* Interpreter to use for nested command
  457.                  * evaluations and error messages. */
  458.     char *string;        /* Character just after opening bracket. */
  459.     char **termPtr;        /* Store address of terminating character
  460.                  * here. */
  461.     register ParseValue *pvPtr;    /* Information about where to place
  462.                  * result of command. */
  463. {
  464.     int level;
  465.     register char *src, *dst, *end;
  466.     register char c;
  467.  
  468.     src = string;
  469.     dst = pvPtr->next;
  470.     end = pvPtr->end;
  471.     level = 1;
  472.  
  473.     /*
  474.      * Copy the characters one at a time to the result area, stopping
  475.      * when the matching close-brace is found.
  476.      */
  477.  
  478.     while (1) {
  479.     c = *src;
  480.     src++;
  481.     if (dst == end) {
  482.         pvPtr->next = dst;
  483.         (*pvPtr->expandProc)(pvPtr, 20);
  484.         dst = pvPtr->next;
  485.         end = pvPtr->end;
  486.     }
  487.     *dst = c;
  488.     dst++;
  489.     if (CHAR_TYPE(c) == TCL_NORMAL) {
  490.         continue;
  491.     } else if (c == '{') {
  492.         level++;
  493.     } else if (c == '}') {
  494.         level--;
  495.         if (level == 0) {
  496.         dst--;            /* Don't copy the last close brace. */
  497.         break;
  498.         }
  499.     } else if (c == '\\') {
  500.         int count;
  501.  
  502.         /*
  503.          * Must always squish out backslash-newlines, even when in
  504.          * braces.  This is needed so that this sequence can appear
  505.          * anywhere in a command, such as the middle of an expression.
  506.          */
  507.  
  508. #if defined(THINK_C) && defined(TCLAPPL)
  509.         if (*src == '\r') {
  510. #else
  511.         if (*src == '\n') {
  512. #endif
  513.         dst[-1] = Tcl_Backslash(src-1, &count);
  514.         src += count - 1;
  515.         } else {
  516.         (void) Tcl_Backslash(src-1, &count);
  517.         while (count > 1) {
  518.                     if (dst == end) {
  519.                         pvPtr->next = dst;
  520.                         (*pvPtr->expandProc)(pvPtr, 20);
  521.                         dst = pvPtr->next;
  522.                         end = pvPtr->end;
  523.                     }
  524.             *dst = *src;
  525.             dst++;
  526.             src++;
  527.             count--;
  528.         }
  529.         }
  530.     } else if (c == '\0') {
  531.         Tcl_SetResult(interp, "missing close-brace", TCL_STATIC);
  532.         *termPtr = string-1;
  533.         return TCL_ERROR;
  534.     }
  535.     }
  536.  
  537.     *dst = '\0';
  538.     pvPtr->next = dst;
  539.     *termPtr = src;
  540.     return TCL_OK;
  541. }
  542.  
  543. /*
  544.  *--------------------------------------------------------------
  545.  *
  546.  * TclParseWords --
  547.  *
  548.  *    This procedure parses one or more words from a command
  549.  *    string and creates argv-style pointers to fully-substituted
  550.  *    copies of those words.
  551.  *
  552.  * Results:
  553.  *    The return value is a standard Tcl result.
  554.  *    
  555.  *    *argcPtr is modified to hold a count of the number of words
  556.  *    successfully parsed, which may be 0.  At most maxWords words
  557.  *    will be parsed.  If 0 <= *argcPtr < maxWords then it
  558.  *    means that a command separator was seen.  If *argcPtr
  559.  *    is maxWords then it means that a command separator was
  560.  *    not seen yet.
  561.  *
  562.  *    *TermPtr is filled in with the address of the character
  563.  *    just after the last one successfully processed in the
  564.  *    last word.  This is either the command terminator (if
  565.  *    *argcPtr < maxWords), the character just after the last
  566.  *    one in a word (if *argcPtr is maxWords), or the vicinity
  567.  *    of an error (if the result is not TCL_OK).
  568.  *    
  569.  *    The pointers at *argv are filled in with pointers to the
  570.  *    fully-substituted words, and the actual contents of the
  571.  *    words are copied to the buffer at pvPtr.
  572.  *
  573.  *    If an error occurrs then an error message is left in
  574.  *    interp->result and the information at *argv, *argcPtr,
  575.  *    and *pvPtr may be incomplete.
  576.  *
  577.  * Side effects:
  578.  *    The buffer space in pvPtr may be enlarged by calling its
  579.  *    expandProc.
  580.  *
  581.  *--------------------------------------------------------------
  582.  */
  583.  
  584. int
  585. TclParseWords(interp, string, flags, maxWords, termPtr, argcPtr, argv, pvPtr)
  586.     Tcl_Interp *interp;        /* Interpreter to use for nested command
  587.                  * evaluations and error messages. */
  588.     char *string;        /* First character of word. */
  589.     int flags;            /* Flags to control parsing (same values as
  590.                  * passed to Tcl_Eval). */
  591.     int maxWords;        /* Maximum number of words to parse. */
  592.     char **termPtr;        /* Store address of terminating character
  593.                  * here. */
  594.     int *argcPtr;        /* Filled in with actual number of words
  595.                  * parsed. */
  596.     char **argv;        /* Store addresses of individual words here. */
  597.     register ParseValue *pvPtr;    /* Information about where to place
  598.                  * fully-substituted word. */
  599. {
  600.     register char *src, *dst;
  601.     register char c;
  602.     int type, result, argc;
  603.     char *oldBuffer;        /* Used to detect when pvPtr's buffer gets
  604.                  * reallocated, so we can adjust all of the
  605.                  * argv pointers. */
  606.  
  607.     src = string;
  608.     oldBuffer = pvPtr->buffer;
  609.     dst = pvPtr->next;
  610.     for (argc = 0; argc < maxWords; argc++) {
  611.     argv[argc] = dst;
  612.  
  613.     /*
  614.      * Skip leading space.
  615.      */
  616.     
  617.     skipSpace:
  618.     c = *src;
  619.     type = CHAR_TYPE(c);
  620.     while (type == TCL_SPACE) {
  621.         src++;
  622.         c = *src;
  623.         type = CHAR_TYPE(c);
  624.     }
  625.     
  626.     /*
  627.      * Handle the normal case (i.e. no leading double-quote or brace).
  628.      */
  629.  
  630.     if (type == TCL_NORMAL) {
  631.         normalArg:
  632.         while (1) {
  633.         if (dst == pvPtr->end) {
  634.             /*
  635.              * Target buffer space is about to run out.  Make
  636.              * more space.
  637.              */
  638.     
  639.             pvPtr->next = dst;
  640.             (*pvPtr->expandProc)(pvPtr, 1);
  641.             dst = pvPtr->next;
  642.         }
  643.     
  644.         if (type == TCL_NORMAL) {
  645.             copy:
  646.             *dst = c;
  647.             dst++;
  648.             src++;
  649.         } else if (type == TCL_SPACE) {
  650.             goto wordEnd;
  651.         } else if (type == TCL_DOLLAR) {
  652.             int length;
  653.             char *value;
  654.     
  655.             value = Tcl_ParseVar(interp, src, termPtr);
  656.             if (value == NULL) {
  657.             return TCL_ERROR;
  658.             }
  659.             src = *termPtr;
  660.             length = strlen(value);
  661.             if ((pvPtr->end - dst) <= length) {
  662.             pvPtr->next = dst;
  663.             (*pvPtr->expandProc)(pvPtr, length);
  664.             dst = pvPtr->next;
  665.             }
  666.             strcpy(dst, value);
  667.             dst += length;
  668.         } else if (type == TCL_COMMAND_END) {
  669.             if ((c == ']') && !(flags & TCL_BRACKET_TERM)) {
  670.             goto copy;
  671.             }
  672.  
  673.             /*
  674.              * End of command;  simulate a word-end first, so
  675.              * that the end-of-command can be processed as the
  676.              * first thing in a new word.
  677.              */
  678.  
  679.             goto wordEnd;
  680.         } else if (type == TCL_OPEN_BRACKET) {
  681.             pvPtr->next = dst;
  682.             result = TclParseNestedCmd(interp, src+1, flags, termPtr,
  683.                 pvPtr);
  684.             if (result != TCL_OK) {
  685.             return result;
  686.             }
  687.             src = *termPtr;
  688.             dst = pvPtr->next;
  689.         } else if (type == TCL_BACKSLASH) {
  690.             int numRead;
  691.     
  692.             *dst = Tcl_Backslash(src, &numRead);
  693.  
  694.             /*
  695.              * The following special check allows a backslash-newline
  696.              * to be treated as a word-separator, as if the backslash
  697.              * and newline had been collapsed before command parsing
  698.              * began.
  699.              */
  700.  
  701. #if defined(THINK_C) && defined(TCLAPPL)
  702.             if (src[1] == '\r') {
  703. #else
  704.             if (src[1] == '\n') {
  705. #endif
  706.             src += numRead;
  707.             goto wordEnd;
  708.             }
  709.             src += numRead;
  710.             dst++;
  711.         } else {
  712.             goto copy;
  713.         }
  714.         c = *src;
  715.         type = CHAR_TYPE(c);
  716.         }
  717.     } else {
  718.     
  719.         /*
  720.          * Check for the end of the command.
  721.          */
  722.     
  723.         if (type == TCL_COMMAND_END) {
  724.         if (flags & TCL_BRACKET_TERM) {
  725.             if (c == '\0') {
  726.             Tcl_SetResult(interp, "missing close-bracket",
  727.                 TCL_STATIC);
  728.             return TCL_ERROR;
  729.             }
  730.         } else {
  731.             if (c == ']') {
  732.             goto normalArg;
  733.             }
  734.         }
  735.         goto done;
  736.         }
  737.     
  738.         /*
  739.          * Now handle the special cases: open braces, double-quotes,
  740.          * and backslash-newline.
  741.          */
  742.  
  743.         pvPtr->next = dst;
  744.         if (type == TCL_QUOTE) {
  745.         result = TclParseQuotes(interp, src+1, '"', flags,
  746.             termPtr, pvPtr);
  747.         } else if (type == TCL_OPEN_BRACE) {
  748.         result = TclParseBraces(interp, src+1, termPtr, pvPtr);
  749. #if defined(THINK_C) && defined(TCLAPPL)
  750.         } else if ((type == TCL_BACKSLASH) && (src[1] == '\r')) {
  751. #else
  752.         } else if ((type == TCL_BACKSLASH) && (src[1] == '\n')) {
  753. #endif
  754.         /*
  755.          * This code is needed so that a backslash-newline at the
  756.          * very beginning of a word is treated as part of the white
  757.          * space between words and not as a space within the word.
  758.          */
  759.  
  760.         src += 2;
  761.         goto skipSpace;
  762.         } else {
  763.         goto normalArg;
  764.         }
  765.         if (result != TCL_OK) {
  766.         return result;
  767.         }
  768.     
  769.         /*
  770.          * Back from quotes or braces;  make sure that the terminating
  771.          * character was the end of the word.  Have to be careful here
  772.          * to handle continuation lines (i.e. lines ending in backslash).
  773.          */
  774.     
  775.         c = **termPtr;
  776. #if defined(THINK_C) && defined(TCLAPPL)
  777.         if ((c == '\\') && ((*termPtr)[1] == '\r')) {
  778. #else
  779.         if ((c == '\\') && ((*termPtr)[1] == '\n')) {
  780. #endif
  781.         c = (*termPtr)[2];
  782.         }
  783.         type = CHAR_TYPE(c);
  784.         if ((type != TCL_SPACE) && (type != TCL_COMMAND_END)) {
  785.         if (*src == '"') {
  786.             Tcl_SetResult(interp, "extra characters after close-quote",
  787.                 TCL_STATIC);
  788.         } else {
  789.             Tcl_SetResult(interp, "extra characters after close-brace",
  790.                 TCL_STATIC);
  791.         }
  792.         return TCL_ERROR;
  793.         }
  794.         src = *termPtr;
  795.         dst = pvPtr->next;
  796.  
  797.     }
  798.  
  799.     /*
  800.      * We're at the end of a word, so add a null terminator.  Then
  801.      * see if the buffer was re-allocated during this word.  If so,
  802.      * update all of the argv pointers.
  803.      */
  804.  
  805.     wordEnd:
  806.     *dst = '\0';
  807.     dst++;
  808.     if (oldBuffer != pvPtr->buffer) {
  809.         int i;
  810.  
  811.         for (i = 0; i <= argc; i++) {
  812.         argv[i] = pvPtr->buffer + (argv[i] - oldBuffer);
  813.         }
  814.         oldBuffer = pvPtr->buffer;
  815.     }
  816.     }
  817.  
  818.     done:
  819.     pvPtr->next = dst;
  820.     *termPtr = src;
  821.     *argcPtr = argc;
  822.     return TCL_OK;
  823. }
  824.  
  825. /*
  826.  *--------------------------------------------------------------
  827.  *
  828.  * TclExpandParseValue --
  829.  *
  830.  *    This procedure is commonly used as the value of the
  831.  *    expandProc in a ParseValue.  It uses malloc to allocate
  832.  *    more space for the result of a parse.
  833.  *
  834.  * Results:
  835.  *    The buffer space in *pvPtr is reallocated to something
  836.  *    larger, and if pvPtr->clientData is non-zero the old
  837.  *    buffer is freed.  Information is copied from the old
  838.  *    buffer to the new one.
  839.  *
  840.  * Side effects:
  841.  *    None.
  842.  *
  843.  *--------------------------------------------------------------
  844.  */
  845.  
  846. void
  847. TclExpandParseValue(pvPtr, needed)
  848.     register ParseValue *pvPtr;        /* Information about buffer that
  849.                      * must be expanded.  If the clientData
  850.                      * in the structure is non-zero, it
  851.                      * means that the current buffer is
  852.                      * dynamically allocated. */
  853.     int needed;                /* Minimum amount of additional space
  854.                      * to allocate. */
  855. {
  856.     int newSpace;
  857.     char *new;
  858.  
  859.     /*
  860.      * Either double the size of the buffer or add enough new space
  861.      * to meet the demand, whichever produces a larger new buffer.
  862.      */
  863.  
  864.     newSpace = (pvPtr->end - pvPtr->buffer) + 1;
  865.     if (newSpace < needed) {
  866.     newSpace += needed;
  867.     } else {
  868.     newSpace += newSpace;
  869.     }
  870.     new = (char *) ckalloc((unsigned) newSpace);
  871.  
  872.     /*
  873.      * Copy from old buffer to new, free old buffer if needed, and
  874.      * mark new buffer as malloc-ed.
  875.      */
  876.  
  877.     memcpy((VOID *) new, (VOID *) pvPtr->buffer, pvPtr->next - pvPtr->buffer);
  878.     pvPtr->next = new + (pvPtr->next - pvPtr->buffer);
  879.     if (pvPtr->clientData != 0) {
  880.     ckfree(pvPtr->buffer);
  881.     }
  882.     pvPtr->buffer = new;
  883.     pvPtr->end = new + newSpace - 1;
  884.     pvPtr->clientData = (ClientData) 1;
  885. }
  886.  
  887. /*
  888.  *----------------------------------------------------------------------
  889.  *
  890.  * TclWordEnd --
  891.  *
  892.  *    Given a pointer into a Tcl command, find the end of the next
  893.  *    word of the command.
  894.  *
  895.  * Results:
  896.  *    The return value is a pointer to the last character that's part
  897.  *    of the word pointed to by "start".  If the word doesn't end
  898.  *    properly within the string then the return value is the address
  899.  *    of the null character at the end of the string.
  900.  *
  901.  * Side effects:
  902.  *    None.
  903.  *
  904.  *----------------------------------------------------------------------
  905.  */
  906.  
  907. char *
  908. TclWordEnd(start, nested)
  909.     char *start;        /* Beginning of a word of a Tcl command. */
  910.     int nested;            /* Zero means this is a top-level command.
  911.                  * One means this is a nested command (close
  912.                  * brace is a word terminator). */
  913. {
  914.     register char *p;
  915.     int count;
  916.  
  917.     /*
  918.      * Skip leading white space (backslash-newline must be treated like
  919.      * white-space, except that it better not be the last thing in the
  920.      * command).
  921.      */
  922.  
  923.     for (p = start; ; p++) {
  924.     if (isspace(UCHAR(*p))) {
  925.         continue;
  926.     }
  927. #if defined(THINK_C) && defined(TCLAPPL)
  928.     if ((p[0] == '\\') && (p[1] == '\r')) {
  929. #else
  930.     if ((p[0] == '\\') && (p[1] == '\n')) {
  931. #endif
  932.         if (p[2] == 0) {
  933.         return p+2;
  934.         }
  935.         continue;
  936.     }
  937.     break;
  938.     }
  939.  
  940.     /*
  941.      * Handle words beginning with a double-quote or a brace.
  942.      */
  943.  
  944.     if (*p == '"') {
  945.     p = QuoteEnd(p+1, '"');
  946.     if (*p == 0) {
  947.         return p;
  948.     }
  949.     p++;
  950.     } else if (*p == '{') {
  951.     int braces = 1;
  952.     while (braces != 0) {
  953.         p++;
  954.         while (*p == '\\') {
  955.         (void) Tcl_Backslash(p, &count);
  956.         p += count;
  957.         }
  958.         if (*p == '}') {
  959.         braces--;
  960.         } else if (*p == '{') {
  961.         braces++;
  962.         } else if (*p == 0) {
  963.         return p;
  964.         }
  965.     }
  966.     p++;
  967.     }
  968.  
  969.     /*
  970.      * Handle words that don't start with a brace or double-quote.
  971.      * This code is also invoked if the word starts with a brace or
  972.      * double-quote and there is garbage after the closing brace or
  973.      * quote.  This is an error as far as Tcl_Eval is concerned, but
  974.      * for here the garbage is treated as part of the word.
  975.      */
  976.  
  977.     while (1) {
  978.     if (*p == '[') {
  979.         for (p++; *p != ']'; p++) {
  980.         p = TclWordEnd(p, 1);
  981.         if (*p == 0) {
  982.             return p;
  983.         }
  984.         }
  985.         p++;
  986.     } else if (*p == '\\') {
  987.         (void) Tcl_Backslash(p, &count);
  988.         p += count;
  989. #if defined(THINK_C) && defined(TCLAPPL)
  990.         if ((*p == 0) && (count == 2) && (p[-1] == '\r')) {
  991. #else
  992.         if ((*p == 0) && (count == 2) && (p[-1] == '\n')) {
  993. #endif
  994.         return p;
  995.         }
  996.     } else if (*p == '$') {
  997.         p = VarNameEnd(p);
  998.         if (*p == 0) {
  999.         return p;
  1000.         }
  1001.         p++;
  1002.     } else if (*p == ';') {
  1003.         /*
  1004.          * Include the semi-colon in the word that is returned.
  1005.          */
  1006.  
  1007.         return p;
  1008.     } else if (isspace(UCHAR(*p))) {
  1009.         return p-1;
  1010.     } else if ((*p == ']') && nested) {
  1011.         return p-1;
  1012.     } else if (*p == 0) {
  1013.         if (nested) {
  1014.         /*
  1015.          * Nested commands can't end because of the end of the
  1016.          * string.
  1017.          */
  1018.         return p;
  1019.         }
  1020.         return p-1;
  1021.     } else {
  1022.         p++;
  1023.     }
  1024.     }
  1025. }
  1026.  
  1027. /*
  1028.  *----------------------------------------------------------------------
  1029.  *
  1030.  * QuoteEnd --
  1031.  *
  1032.  *    Given a pointer to a string that obeys the parsing conventions
  1033.  *    for quoted things in Tcl, find the end of that quoted thing.
  1034.  *    The actual thing may be a quoted argument or a parenthesized
  1035.  *    index name.
  1036.  *
  1037.  * Results:
  1038.  *    The return value is a pointer to the last character that is
  1039.  *    part of the quoted string (i.e the character that's equal to
  1040.  *    term).  If the quoted string doesn't terminate properly then
  1041.  *    the return value is a pointer to the null character at the
  1042.  *    end of the string.
  1043.  *
  1044.  * Side effects:
  1045.  *    None.
  1046.  *
  1047.  *----------------------------------------------------------------------
  1048.  */
  1049.  
  1050. static char *
  1051. QuoteEnd(string, term)
  1052.     char *string;        /* Pointer to character just after opening
  1053.                  * "quote". */
  1054.     int term;            /* This character will terminate the
  1055.                  * quoted string (e.g. '"' or ')'). */
  1056. {
  1057.     register char *p = string;
  1058.     int count;
  1059.  
  1060.     while (*p != term) {
  1061.     if (*p == '\\') {
  1062.         (void) Tcl_Backslash(p, &count);
  1063.         p += count;
  1064.     } else if (*p == '[') {
  1065.         for (p++; *p != ']'; p++) {
  1066.         p = TclWordEnd(p, 1);
  1067.         if (*p == 0) {
  1068.             return p;
  1069.         }
  1070.         }
  1071.         p++;
  1072.     } else if (*p == '$') {
  1073.         p = VarNameEnd(p);
  1074.         if (*p == 0) {
  1075.         return p;
  1076.         }
  1077.         p++;
  1078.     } else if (*p == 0) {
  1079.         return p;
  1080.     } else {
  1081.         p++;
  1082.     }
  1083.     }
  1084.     return p-1;
  1085. }
  1086.  
  1087. /*
  1088.  *----------------------------------------------------------------------
  1089.  *
  1090.  * VarNameEnd --
  1091.  *
  1092.  *    Given a pointer to a variable reference using $-notation, find
  1093.  *    the end of the variable name spec.
  1094.  *
  1095.  * Results:
  1096.  *    The return value is a pointer to the last character that
  1097.  *    is part of the variable name.  If the variable name doesn't
  1098.  *    terminate properly then the return value is a pointer to the
  1099.  *    null character at the end of the string.
  1100.  *
  1101.  * Side effects:
  1102.  *    None.
  1103.  *
  1104.  *----------------------------------------------------------------------
  1105.  */
  1106.  
  1107. static char *
  1108. VarNameEnd(string)
  1109.     char *string;        /* Pointer to dollar-sign character. */
  1110. {
  1111.     register char *p = string+1;
  1112.  
  1113.     if (*p == '{') {
  1114.     for (p++; (*p != '}') && (*p != 0); p++) {
  1115.         /* Empty loop body. */
  1116.     }
  1117.     return p;
  1118.     }
  1119.     while (isalnum(UCHAR(*p)) || (*p == '_')) {
  1120.     p++;
  1121.     }
  1122.     if ((*p == '(') && (p != string+1)) {
  1123.     return QuoteEnd(p+1, ')');
  1124.     }
  1125.     return p-1;
  1126. }
  1127.  
  1128. /*
  1129.  *----------------------------------------------------------------------
  1130.  *
  1131.  * Tcl_ParseVar --
  1132.  *
  1133.  *    Given a string starting with a $ sign, parse off a variable
  1134.  *    name and return its value.
  1135.  *
  1136.  * Results:
  1137.  *    The return value is the contents of the variable given by
  1138.  *    the leading characters of string.  If termPtr isn't NULL,
  1139.  *    *termPtr gets filled in with the address of the character
  1140.  *    just after the last one in the variable specifier.  If the
  1141.  *    variable doesn't exist, then the return value is NULL and
  1142.  *    an error message will be left in interp->result.
  1143.  *
  1144.  * Side effects:
  1145.  *    None.
  1146.  *
  1147.  *----------------------------------------------------------------------
  1148.  */
  1149.  
  1150. char *
  1151. Tcl_ParseVar(interp, string, termPtr)
  1152.     Tcl_Interp *interp;            /* Context for looking up variable. */
  1153.     register char *string;        /* String containing variable name.
  1154.                      * First character must be "$". */
  1155.     char **termPtr;            /* If non-NULL, points to word to fill
  1156.                      * in with character just after last
  1157.                      * one in the variable specifier. */
  1158.  
  1159. {
  1160.     char *name1, *name1End, c, *result;
  1161.     register char *name2;
  1162. #define NUM_CHARS 200
  1163.     char copyStorage[NUM_CHARS];
  1164.     ParseValue pv;
  1165.  
  1166.     /*
  1167.      * There are three cases:
  1168.      * 1. The $ sign is followed by an open curly brace.  Then the variable
  1169.      *    name is everything up to the next close curly brace, and the
  1170.      *    variable is a scalar variable.
  1171.      * 2. The $ sign is not followed by an open curly brace.  Then the
  1172.      *    variable name is everything up to the next character that isn't
  1173.      *    a letter, digit, or underscore.  If the following character is an
  1174.      *    open parenthesis, then the information between parentheses is
  1175.      *    the array element name, which can include any of the substitutions
  1176.      *    permissible between quotes.
  1177.      * 3. The $ sign is followed by something that isn't a letter, digit,
  1178.      *    or underscore:  in this case, there is no variable name, and "$"
  1179.      *    is returned.
  1180.      */
  1181.  
  1182.     name2 = NULL;
  1183.     string++;
  1184.     if (*string == '{') {
  1185.     string++;
  1186.     name1 = string;
  1187.     while (*string != '}') {
  1188.         if (*string == 0) {
  1189.         Tcl_SetResult(interp, "missing close-brace for variable name",
  1190.             TCL_STATIC);
  1191.         if (termPtr != 0) {
  1192.             *termPtr = string;
  1193.         }
  1194.         return NULL;
  1195.         }
  1196.         string++;
  1197.     }
  1198.     name1End = string;
  1199.     string++;
  1200.     } else {
  1201.     name1 = string;
  1202.     while (isalnum(UCHAR(*string)) || (*string == '_')) {
  1203.         string++;
  1204.     }
  1205.     if (string == name1) {
  1206.         if (termPtr != 0) {
  1207.         *termPtr = string;
  1208.         }
  1209.         return "$";
  1210.     }
  1211.     name1End = string;
  1212.     if (*string == '(') {
  1213.         char *end;
  1214.  
  1215.         /*
  1216.          * Perform substitutions on the array element name, just as
  1217.          * is done for quotes.
  1218.          */
  1219.  
  1220.         pv.buffer = pv.next = copyStorage;
  1221.         pv.end = copyStorage + NUM_CHARS - 1;
  1222.         pv.expandProc = TclExpandParseValue;
  1223.         pv.clientData = (ClientData) NULL;
  1224.         if (TclParseQuotes(interp, string+1, ')', 0, &end, &pv)
  1225.             != TCL_OK) {
  1226.         char msg[100];
  1227.         sprintf(msg, "%c    (parsing index for array \"%.*s\")",
  1228. #if defined(THINK_C) && defined(TCLAPPL)
  1229.             '\r',
  1230. #else
  1231.             '\n',
  1232. #endif
  1233.             string-name1, name1);
  1234.         Tcl_AddErrorInfo(interp, msg);
  1235.         result = NULL;
  1236.         name2 = pv.buffer;
  1237.         if (termPtr != 0) {
  1238.             *termPtr = end;
  1239.         }
  1240.         goto done;
  1241.         }
  1242.         Tcl_ResetResult(interp);
  1243.         string = end;
  1244.         name2 = pv.buffer;
  1245.     }
  1246.     }
  1247.     if (termPtr != 0) {
  1248.     *termPtr = string;
  1249.     }
  1250.  
  1251.     if (((Interp *) interp)->noEval) {
  1252.     return "";
  1253.     }
  1254.     c = *name1End;
  1255.     *name1End = 0;
  1256.     result = Tcl_GetVar2(interp, name1, name2, TCL_LEAVE_ERR_MSG);
  1257.     *name1End = c;
  1258.  
  1259.     done:
  1260.     if ((name2 != NULL) && (pv.buffer != copyStorage)) {
  1261.     ckfree(pv.buffer);
  1262.     }
  1263.     return result;
  1264. }
  1265.  
  1266. /*
  1267.  *----------------------------------------------------------------------
  1268.  *
  1269.  * Tcl_CommandComplete --
  1270.  *
  1271.  *    Given a partial or complete Tcl command, this procedure
  1272.  *    determines whether the command is complete in the sense
  1273.  *    of having matched braces and quotes and brackets.
  1274.  *
  1275.  * Results:
  1276.  *    1 is returned if the command is complete, 0 otherwise.
  1277.  *
  1278.  * Side effects:
  1279.  *    None.
  1280.  *
  1281.  *----------------------------------------------------------------------
  1282.  */
  1283.  
  1284. int
  1285. Tcl_CommandComplete(cmd)
  1286.     char *cmd;            /* Command to check. */
  1287. {
  1288.     register char *p = cmd;
  1289.  
  1290.     p = cmd;
  1291.     while (1) {
  1292.     while (isspace(UCHAR(*p))) {
  1293.         p++;
  1294.     }
  1295.     if (*p == 0) {
  1296.         return 1;
  1297.     }
  1298.     p = TclWordEnd(p, 0);
  1299.     if (*p == 0) {
  1300.         return 0;
  1301.     }
  1302.     p++;
  1303.     }
  1304. }
  1305.